@import url('https://fonts.googleapis.com/css2?family=Adamina&family=Gloria+Hallelujah&display=swap');

body, html {
    margin: 0;
    padding: 0;

  font-family: adamina, serif;
  /* padding: 2em; */
}

h1, h2, h3 {
    font-family: "Gloria Hallelujah", cursive;
    color: #3d757d;
}

.centerbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.spreader {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.spreader > *:not(:last-child) {
    margin-right: 2em;
}

table, table *{
    padding: 0;
    margin: 0;
    border: none;
}

td, th {
    padding: 0.25em 1rem;
}

td:first-child , th:first-child {
    padding-left: 0;
}

td:last-child, th:last-child {
    padding-right: 0;
}

.back-link {
    align-self: flex-start;
}

input, button {
  margin-top: 0.5em;
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 0.5em;
}

@media (max-width: 750px) {
    .spreader {
        flex-direction: column;
    }

    .spreader > *:not(:last-child) {
        margin-right: 0;
        margin-bottom: 1em;
    }
}